Passed
Push — master ( ef8571...54d8e5 )
by MusikAnimal
02:08
created

?!?.push.ng4s   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 1
rs 10
c 1
b 0
f 0
1
(window.webpackJsonp=window.webpackJsonp||[]).push([["app"],{0:function(n,o,t){t("EVdn"),t("SYky"),t("ng4s"),t("+eM2"),n.exports=t("sZ/o")},ng4s:function(n,o,t){t("fbCW");var e=t("EVdn");e(function(){e("form").on("submit",function(n){e(n.target).find("input").prop("readonly",!0),e(n.target).find("button").prop("disabled",!0)}),e(".btn-reset-form").on("click",function(n){e(".results").hide(),e("input").val("").prop("checked",!1),e("#searchQuery").focus(),e(n.target).remove()})})},"sZ/o":function(n,o,t){}},[[0,"runtime",0]]]);
0 ignored issues
show
Unused Code introduced by
The parameter o is not used and could be removed.

This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.

Loading history...
Unused Code introduced by
The parameter n is not used and could be removed.

This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.

Loading history...
Comprehensibility introduced by
Usage of the sequence operator is discouraged, since it may lead to obfuscated code.

The sequence or comma operator allows the inclusion of multiple expressions where only is permitted. The result of the sequence is the value of the last expression.

This operator is most often used in for statements.

Used in another places it can make code hard to read, especially when people do not realize it even exists as a seperate operator.

This check looks for usage of the sequence operator in locations where it is not necessary and could be replaced by a series of expressions or statements.

var a,b,c;

a = 1, b = 1,  c= 3;

could just as well be written as:

var a,b,c;

a = 1;
b = 1;
c = 3;

To learn more about the sequence operator, please refer to the MDN.

Loading history...
Unused Code introduced by
The parameter t is not used and could be removed.

This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.

Loading history...